home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / feverfrenzy-demo.swf / scripts / DefineSprite_351 / frame_1 / DoAction.as
Text File  |  2007-09-28  |  389b  |  26 lines

  1. function setScore(val)
  2. {
  3.    mScore_mc.showValue(val);
  4. }
  5. function setExpert(val)
  6. {
  7.    mExpert_mc._visible = val;
  8. }
  9. function setCured(val)
  10. {
  11.    mCured_mc.showValue(val);
  12. }
  13. function setLost(val)
  14. {
  15.    mLost_mc.showValue(val);
  16. }
  17. stop();
  18. this.onMouseDown = function()
  19. {
  20.    if(this._visible)
  21.    {
  22.       _root.Sons.gotoAndStop("click");
  23.       _parent.nextLevel();
  24.    }
  25. };
  26.